home-code

示例❤源码

<?php
namespace imcat;

require 
'../incs/func.php';
$url req('url''http://txjia.com'); 
$cache req('cache''0');
if(
$cache){
    
comHttp::$cache $cache;
}

?>

<!DOCTYPE html><html><head>
<?php glbHtml::page('init'); ?>
</head>
<body>

<nav>
    <a href="?">comHttp采集</a>
    <a href="?cache=5">使用缓存</a>
    <a href="?cache=5&url=http://txjia.com/imcat">imcat</a>
</nav>    

<?php

$data 
comHttp::doGet($url);
dump($data);

?>

</body>
</html>

-End-